:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}

a:hover {
  color: #535bf2;
}

.search-container {
  position: relative;
  flex-grow: 1;
}

.autosuggest-input {
  width: 100%;
}

.suggestions-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  z-index: 1000;
}

.suggestion-item {
  padding: 8px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f1f1f1;
}

body {
  background: linear-gradient(to right, #fadce4, #9dc3e2);
  /* Updated gradient */
  background-size: cover; /* Ensure the gradient covers the screen */
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center; /* Center logo vertically */

  padding-top: 0%;
}

.container {
  min-height: 100vh;
  width: 100%;
  max-width: 600px;
}

.container-fluid {
  padding: 0 15px; /* Responsive padding */
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

.header {
  padding: 10px 20px;
  display: flex;
  justify-content: center; /* Center the header */
  align-items: center;
}

.logo-container {
  margin: 0 auto; /* Center the logo container */
}

.logo {
  width: 400px;
  height: auto;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  /* padding: 0.6em 1.2em; */
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
  display: flex;
  align-items: center;
  margin-bottom: 10%;
}

.custom-header-bg {
  background-color: #007bff;
  color: white;
}

button:hover {
  border-color: #646cff;
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }

  a:hover {
    color: #747bff;
  }

  button {
    background-color: #f9f9f9;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 10px;
  }

  .search-container {
    width: 100% !important;
  }

  .button {
    width: 100%;
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .main-content {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  input,
  button {
    width: 100%; /* Ensure full width on mobile */
    border-radius: 5px; /* To make corners smooth */
  }

  .search-container {
    padding: 0 10px; /* Add some padding */
  }
}
